/* Extra Classes */
.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

/* Menu */
/* header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	width:100%;
	background:#FFF;
	height:60px;
	z-index:9999;
} */

header.scrolled {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}

header nav {
	clear:both;
	display: block;
	line-height: 60px;
	height:60px;
	position:relative;
}

.menu-container {
	padding-left:30px;
	padding-right:30px;
}

.grt-menu-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

a.grt-logo {
	display:inline-block;
}

a.grt-logo img {
	max-height: 60px;
    width: auto;
}

.grt-mobile-button {
	display:none;
}

.grt-mobile-button:focus {
	border:0;
	outline:0;
}

.body-overflow {
	overflow:hidden;
}

ul.grt-menu {
	display: block;
    float: left;
    margin: 0 0px 0 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
}

ul.grt-menu:after {
	content:"";
	clear:both;
	display:block;
}

ul.grt-menu li {
	display: inline-block;
	margin:0;
	    padding: 0px 6px;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

ul.grt-menu li a {
    padding: 0px 10px;
    display: inline-block;
  color: rgba(255, 234, 206, 1);

    box-shadow: inset 0 0 0 0 #FFF;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    /* font-family: Poppins; */
    font-size: 16px;
    font-weight: 500;
    line-height: 49px;
    text-align: center;
}
.bg-menu-login {
    background: #f7c236;
    border-radius: 9px;
    padding: 0px 10px !important;
    margin: 4px;
    color: #fff !important;
	font-size: 14px !important;
}

/* ul.grt-menu li.active a:after  {
    position: absolute;
    bottom: 1px;
    content: "";
    left: 12px;
    right: 12px;
    border-bottom: 2px solid #ee2b34;
} */

@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

ul.grt-menu li.grt-dropdown:hover {
	cursor:pointer;
}

ul.grt-menu li.grt-dropdown:hover a {
	box-shadow: none;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
	display:none;
	position:absolute;
	background: rgba(255, 255, 255, 1);
	margin: 0;
	padding: 0;
    box-shadow: 0px 10px 32px -4px rgba(19, 25, 39, 0.1);
box-shadow: 0px 6px 14px -6px rgba(19, 25, 39, 0.12);
	min-width:350px;
	animation: fadeIn 0.8s;
	z-index: 999;

}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
	    display: block;
    color: #FFF;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
    padding: 9px 12px;
    color: rgba(0, 76, 76, 1);
    font-family: Trebuchet MS;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    padding:8px 0px;
    letter-spacing: 0px !important;
    text-align: left;
    vertical-align: middle;
}
ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a:hover {
    /* background: rgba(251, 245, 237, 1); */

}
ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li:last-child a {
	padding-bottom:15px;
}

ul.grt-menu li.grt-dropdown.active-dropdown {
/* background: rgba(251, 245, 237, 1); */

}

ul.grt-menu li.grt-dropdown.active-dropdown ul.grt-dropdown-list {
	display:block !important;
}

ul.grt-menu li.grt-dropdown.active-dropdown a {
	color:#FFF;
    padding-left: 16px;
}


/* Desktop only style */
@media (min-width:768px) {

	ul.grt-menu li.grt-dropdown:hover > a + ul.grt-dropdown-list {
		display:block;
		top: calc(100% 10px);
	}
ul.grt-menu li.grt-dropdown.active-dropdown a {
	color:#FFF;
    padding-left: 16px;
}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
		display:block;
  padding: 8px 30px;

	}
	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li:hover{
 background: rgba(251, 245, 237, 1);
    }
	ul.grt-menu li.grt-dropdown:hover > a {
		 border-bottom: 0px solid rgba(255, 255, 255, 1);
         color:rgba(255, 255, 255, 1);



			}

	ul.grt-menu li a:hover {
	               color:rgba(255, 255, 255, 1);
               /* background: rgba(251, 245, 237, 1); */

          	}
}

/* Tablet only style */
@media (min-width:768px) and (max-width:991px) {
	ul.grt-menu li a {
		font-size:18px;
	}
}

/* Mobile only style */
@media (max-width:767px) {

	.menu-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.grt-mobile-button {
		display: inline-block;
        position: absolute;
        right: 17px;
        top: 20px;
        background: transparent;
        color: #d9d9da;
        margin: 0;
        padding: 0;
        cursor: pointer;
        border: 0;
        width: 36px;
	}

	.grt-mobile-button .line1, .grt-mobile-button .line2, .grt-mobile-button .line3 {
		width: 26px;
		height: 2px;
		background-color: #d9d9da;
		margin: 6px 0;
		transition: 0.4s;
		display:block;
	}

	ul.grt-menu {
		display:none;
		margin:0;
  		height: 0;
	}

	ul.open-grt-menu {
        position: fixed;
      background: rgba(255, 255, 255, 1);
        width: 100%;
        left: 0px;
        right: 0;
        top: 0;
        height: 100%;
        float: none;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: left;
        z-index: 9999;
        padding-left: 0px;

	}

	.grt-mobile-button-open {
		position: fixed;
		z-index:99999;
		right:25px;
		top:25px;
	}

	.grt-mobile-button-open .line1 {
		-webkit-transform: rotate(-45deg) translate(-8px, 5px);
		transform: rotate(-45deg) translate(-8px, 5px);
	}

	.grt-mobile-button-open .line2 {opacity: 0;}

	.grt-mobile-button-open .line3 {
		-webkit-transform: rotate(45deg) translate(-8px, -7px);
		transform: rotate(45deg) translate(-8px, -7px);
	}

	ul.grt-menu li {
		display: block;
		line-height: 3.5em;
        padding: 0px 16px;

	}

	ul.grt-menu li a {
		padding: 0px 0px;
        font-size: 16px !important;
        line-height: 20px;
        color: rgba(0, 76, 76, 1) !important;
        font-weight: 700;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
		width:100%;
		position: relative;
		display:none;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
		display: block;
		font-size: 16px;
        font-weight: 600;

	}
    .ugk-search .fa-search {
       color: rgba(0, 76, 76, 1)!important;
    }
    .ugk-search button {
        right:24px;
        left: auto;
    }
    .ugk-search input {
font-size: 16px;
        line-height: 20px;
           padding: 8px;
        margin-left: 16px;
        width: 90%;
        color: rgba(0, 76, 76, 1) !important;
        border-bottom: 1px solid rgba(0, 76, 76, 1) !important;
    }
    ul.grt-menu li.grt-dropdown:hover {
    cursor: pointer;
    background: rgba(251, 245, 237, 1);
    padding: 0px;
}
/* ul.grt-dropdown-list::after {
content: '\f078';
        font-family: "Font Awesome 5 Free";
        position: absolute;
        top: -48px;
        right: 16px;
         color: rgba(0, 76, 76, 1);
}
.grt-dropdown::before {
content: '\f078';
        font-family: "Font Awesome 5 Free";
        position: absolute;
        top: -48px;
        right: 16px;
         color: rgba(0, 76, 76, 1);
} */
}
